home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devfb.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  40 lines

  1. /*
  2.  * devfb.h --
  3.  *
  4.  *    Declarations of local stuff for frame buffer device.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devfb.h,v 1.1 90/10/04 12:59:17 mendel Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVFB
  19. #define _DEVFB
  20. #include <sys/fb.h>
  21.  
  22. /* procedures */
  23.  
  24. extern ReturnStatus DevFBOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
  25.     Fs_NotifyToken token, int *flagsPtr));
  26. extern ReturnStatus DevFBIOControl _ARGS_((Fs_Device *devicePtr,
  27.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  28. extern ReturnStatus DevFBClose _ARGS_((Fs_Device *devicePtr, int useFlags,
  29.     int openCount, int writerCount));
  30. extern ReturnStatus DevFBMMap _ARGS_((Fs_Device *devicePtr,
  31.     Address startAddr, int length, int offset, Address *newAddrPtr));
  32.  
  33. typedef fbtype  FBType;
  34. typedef fbinfo  FBInfo;
  35. typedef fbcmap  FBCMap;
  36. typedef fbsattr FBSAttr;
  37. typedef fbgattr FBGAttr;
  38.  
  39. #endif /* _DEVFB */
  40.